home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / PInterfaces / LocaleObjects.p < prev    next >
Encoding:
Text File  |  1996-05-01  |  6.8 KB  |  168 lines  |  [TEXT/MPS ]

  1. {
  2.      File:        LocaleObjects.p
  3.  
  4.      Contains:    LocaleObject Manager interfaces
  5.  
  6.      Version:    Technology:    System 8
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. }
  18. {$IFC UNDEFINED UsingIncludes}
  19. {$SETC UsingIncludes := 0}
  20. {$ENDC}
  21.  
  22. {$IFC NOT UsingIncludes}
  23.  UNIT LocaleObjects;
  24.  INTERFACE
  25. {$ENDC}
  26.  
  27. {$IFC UNDEFINED __LOCALEOBJECTS__}
  28. {$SETC __LOCALEOBJECTS__ := 1}
  29.  
  30. {$I+}
  31. {$SETC LocaleObjectsIncludes := UsingIncludes}
  32. {$SETC UsingIncludes := 1}
  33.  
  34. {$IFC UNDEFINED __TYPES__}
  35. {$I Types.p}
  36. {$ENDC}
  37. {$IFC UNDEFINED __TEXTOBJECTS__}
  38. {$I TextObjects.p}
  39. {$ENDC}
  40. {$IFC UNDEFINED __TEXTCOMMON__}
  41. {$I TextCommon.p}
  42. {$ENDC}
  43. {$IFC UNDEFINED __FILEMANAGERTYPES__}
  44. {$I FileManagerTypes.p}
  45. {$ENDC}
  46.  
  47. {$PUSH}
  48. {$ALIGN MAC68K}
  49. {$LibExport+}
  50.  
  51. {$IFC FOR_SYSTEM8_PREEMPTIVE }
  52. {  Locale errors }
  53.  
  54. TYPE
  55.     LocaleErrors                        = OSStatus;
  56.     LocaleIterateOp                        = UInt16;
  57.  
  58. CONST
  59.     kLocaleForwardIterate        = 0;
  60.     kLocaleBackwardIterate        = 1;
  61.  
  62.  
  63. TYPE
  64.     LocaleNameIdentifier                = SInt16;
  65.  
  66. CONST
  67.     kLocaleObjectKeyNameIndex    = 0;
  68.     kLocaleObjectUserName        = 1;
  69.     kLocaleObjectCopyrightString = 2;
  70.     kLocaleObjectManufacturerString = 3;
  71.     kLocaleObjectFunctionDescription = 4;
  72.     kLocaleObjectVersionString    = 5;
  73.  
  74.  
  75. TYPE
  76.     LocaleDefaultValue                    = LocaleNameIdentifier;
  77.  
  78. CONST
  79.     kLocaleLanguageID            = $000A;                        {  language id  }
  80.     kLocaleLanguageLocalizedName = $1001;                        {  localized name of language  }
  81.     kLocaleLanguageEnglishName    = $000B;                        {  English name of language  }
  82.     kLocaleAbbreviatedLanguageName = $000C;                        {  abbreviated language name  }
  83.     kLocaleLanguageNativeName    = $000D;                        {  native name of language  }
  84.     kLocaleCountryCode            = $000E;                        {  country code  }
  85.     kLocaleLocalizedCountryName    = $000F;                        {  localized name of country  }
  86.     kLocaleEnglishCountryName    = $1002;                        {  English name of country  }
  87.     kLocaleAbbreviatedCountryName = $001F;                        {  abbreviated country name  }
  88.     kLocaleNativeCountryName    = $002F;                        {  native name of country  }
  89.     kLocaleDefaultLanguageID    = $003F;                        {  default language id  }
  90.     kLocaleDefaultCountryCode    = $004F;                        {  default country code  }
  91.  
  92.  
  93. TYPE
  94.     LocaleObjectContext                    = UInt16;
  95.  
  96. CONST
  97.     kLocaleObjectIsGlobal        = 0;
  98.     kLocaleObjectIsLocal        = 1;
  99.  
  100.  
  101. TYPE
  102.     LocaleDataTag                        = OSType;
  103.     LocaleObjectTagIndex                = UInt32;
  104.     LocaleRef = ^LONGINT;
  105.     LocaleIteratorReference = ^LONGINT;
  106.     LocaleObjectRef = ^LONGINT;
  107.     NameValuePairPtr = ^NameValuePair;
  108.     NameValuePair = RECORD
  109.         name:                    StringPtr;
  110.         valueLength:            ByteCount;
  111.         value:                    Ptr;
  112.     END;
  113.  
  114.     NameTableEntryPtr = ^NameTableEntry;
  115.     NameTableEntry = RECORD
  116.         nameID:                    LocaleNameIdentifier;
  117.         reserved:                UInt16;
  118.         name:                    TextObject;
  119.     END;
  120.  
  121. FUNCTION GetCurrentProcessLocaleRef: LocaleRef; C;
  122. FUNCTION GetLocaleReference(identifier: LocaleIdentifier; VAR locale: LocaleRef): OSStatus; C;
  123. FUNCTION LocaleIteratorCreate(locale: LocaleRef; keyName: Str255; countAttributes: ItemCount; {CONST}VAR attributes: NameValuePair; VAR localeIteratorRef: LocaleIteratorReference): OSStatus; C;
  124. FUNCTION LocaleIteratorDispose(localeIteratorRef: LocaleIteratorReference): OSStatus; C;
  125. {
  126.  The void * returned as the dataPtr and the LocaleObjectRef * both
  127.  point into read-only memory.  Use const to invoke the compiler's help
  128.  in preventing write-accesses to that data.
  129. }
  130. FUNCTION LocaleIterate(localeIteratorRef: LocaleIteratorReference; op: LocaleIterateOp; VAR dataPtr: UNIV Ptr; VAR dataSize: ByteCount; VAR objectRef: LocaleObjectRef): OSStatus; C;
  131. FUNCTION GetLocaleObjectName(objectRef: LocaleObjectRef; nameID: LocaleNameIdentifier; encoding: TextEncoding; languageRegion: LocaleIdentifier; VAR nameSize: ByteCount; name: TextObject): OSStatus; C;
  132. FUNCTION GetLocaleObjectKeyName(objectRef: LocaleObjectRef; VAR keyName: Str255): OSStatus; C;
  133. FUNCTION GetLocaleObjectData(objectRef: LocaleObjectRef; VAR localeObjectData: UNIV Ptr; VAR dataSize: ByteCount): OSStatus; C;
  134. FUNCTION GetLocaleObjectAttributes(objectRef: LocaleObjectRef; {CONST}VAR attributes: NameValuePairPtr; VAR countPairs: ItemCount): OSStatus; C;
  135. FUNCTION GetLocaleObjectFSObjectRef(localeObjRef: LocaleObjectRef; VAR fileRef: FSObjectRef): OSStatus; C;
  136. FUNCTION GetLocaleObjectLocale(objectRef: LocaleObjectRef; VAR locale: LocaleRef; VAR localeID: LocaleIdentifier): OSStatus; C;
  137. FUNCTION GetLocaleObjectMemoryContext(objectRef: LocaleObjectRef; VAR context: LocaleObjectContext): OSStatus; C;
  138. FUNCTION SetLocaleIterator(locale: LocaleRef; keyName: Str255; countAttributes: ItemCount; {CONST}VAR attributes: NameValuePair; VAR localeIteratorRef: LocaleIteratorReference): OSStatus; C;
  139. FUNCTION SearchOneLocaleObject(locale: LocaleRef; keyName: Str255; countAttributes: ItemCount; {CONST}VAR attributes: NameValuePair; VAR localeObjectData: UNIV Ptr; VAR dataSize: ByteCount; {CONST}VAR objectRef: LocaleObjectRef): OSStatus; C;
  140. FUNCTION AddLocaleObject(locale: LocaleRef; localeObjectData: UNIV Ptr; objectSize: ByteCount; keyName: Str255; countUserNames: ItemCount; {CONST}VAR userNames: NameTableEntry; countAttributes: ItemCount; {CONST}VAR attributes: NameValuePair; VAR objectRef: LocaleObjectRef): OSStatus; C;
  141. FUNCTION RemoveLocaleObject(objectRef: LocaleObjectRef): OSStatus; C;
  142. FUNCTION CountLocaleObjectAssociatedDataTags(objectRef: LocaleObjectRef): ItemCount; C;
  143. FUNCTION GetIndexedAssociatedData(objectRef: LocaleObjectRef; tagIndex: LocaleObjectTagIndex; VAR tag: LocaleDataTag; VAR associatedDataPtr: UNIV Ptr; VAR size: ByteCount): OSStatus; C;
  144. FUNCTION GetLocaleObjectAssociatedData(objectRef: LocaleObjectRef; tag: LocaleDataTag; VAR associatedDataPtr: UNIV Ptr; VAR size: ByteCount): OSStatus; C;
  145. FUNCTION CountInstalledLocales: ItemCount; C;
  146. FUNCTION GetFirstLocale(VAR locale: LocaleRef; VAR localeID: LocaleIdentifier): OSStatus; C;
  147. FUNCTION GetNextLocale(VAR locale: LocaleRef; VAR localeID: LocaleIdentifier): OSStatus; C;
  148. FUNCTION SetCurrentProcessLocale(localeID: LocaleIdentifier; VAR locale: LocaleRef): OSStatus; C;
  149. FUNCTION GetSystemDefaultLocale: LocaleRef; C;
  150. FUNCTION GetSystemLocaleIdentifier: LocaleIdentifier; C;
  151. FUNCTION GetCurrentProcessLocaleIdentifier: LocaleIdentifier; C;
  152. FUNCTION GetLocaleRefLocaleIdentifier(locale: LocaleRef): LocaleIdentifier; C;
  153. FUNCTION GetDefaultLocaleObject(locale: LocaleRef; keyName: Str255; VAR objectRef: LocaleObjectRef): OSStatus; C;
  154. FUNCTION SetDefaultLocaleObject(locale: LocaleRef; objectRef: LocaleObjectRef): OSStatus; C;
  155. FUNCTION GetLocaleInformation(locale: LocaleRef; infoIndex: LocaleDefaultValue; VAR infoText: TextObject): OSStatus; C;
  156. {$ENDC}
  157. {  FOR_SYSTEM8_PREEMPTIVE }
  158. {$ALIGN RESET}
  159. {$POP}
  160.  
  161. {$SETC UsingIncludes := LocaleObjectsIncludes}
  162.  
  163. {$ENDC} {__LOCALEOBJECTS__}
  164.  
  165. {$IFC NOT UsingIncludes}
  166.  END.
  167. {$ENDC}
  168.